home *** CD-ROM | disk | FTP | other *** search
- ;------------------------------------------------------------------------------
- ; .ss.
- ; `²²'
- ; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
- ; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
- ; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
- ; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
- ; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
- ; .sS²°$$$²²°"' d²°'
- ; .$$² .$$'
- ; $$$.,d$$'
- ; `²S$$S²'
- ;------------------------------------------------------------------------------
- ; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
- ;------------------------------------------------------------------------------
- ; PPE 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
- ;------------------------------------------------------------------------------
-
- Integer INTEGER001
- Integer INTEGER002
- Integer INTEGER003
- Integer INTEGER004
- Integer INTEGER005
- Integer INTEGER006
- Integer INTEGER007
- String STRING001
- Declare Procedure PROC001(String STRING002)
- Declare Procedure PROC002(String STRING003)
- Declare Procedure PROC003()
- Declare Procedure PROC004()
-
- ;------------------------------------------------------------------------------
-
- Cls
- Print "@X0F"
- PROC002("This is a string printed with the PrintScramble() Procedure")
- PrintLn
- PROC001("This is a string printed with the PrintFade() Procedure")
- End
-
- ;------------------------------------------------------------------------------
-
- Procedure PROC003()
-
- AnsiPos 1, 23
- Color 0
- Print " "
- Backup 1
-
- EndProc
-
-
- ;------------------------------------------------------------------------------
-
- Procedure PROC004()
-
- While (OutBytes() > 0) Do
- EndWhile
-
- EndProc
-
-
- ;------------------------------------------------------------------------------
-
- Procedure PROC001(String STRING002)
-
- For INTEGER001 = 1 To Len(STRING002)
- If (Mid(STRING002, INTEGER001, 1) == " ") Then
- Print "@X0F "
- Continue
- Endif
- Print "@X08" + Mid(STRING002, INTEGER001, 1)
- INTEGER002 = GetX()
- INTEGER003 = GetY()
- PROC003()
- Delay 1
- AnsiPos INTEGER002, INTEGER003
- Backup 1
- Print "@X07" + Mid(STRING002, INTEGER001, 1)
- INTEGER002 = GetX()
- INTEGER003 = GetY()
- PROC003()
- Delay 1
- AnsiPos INTEGER002, INTEGER003
- Backup 1
- Print "@X0F" + Mid(STRING002, INTEGER001, 1)
- INTEGER002 = GetX()
- INTEGER003 = GetY()
- PROC003()
- Delay 1
- PROC004()
- AnsiPos INTEGER002, INTEGER003
- Next
-
- EndProc
-
-
- ;------------------------------------------------------------------------------
-
- Procedure PROC002(String STRING003)
-
- INTEGER004 = GetX()
- INTEGER005 = GetY()
- INTEGER007 = CurColor()
- INTEGER002 = Len(STRING003)
- While (1) Do
- INTEGER001 = Random(INTEGER002 - 1) + 1
- INTEGER003 = 0
- INTEGER006 = 0
- While (1) Do
- Inc INTEGER003
- STRING001 = ScrText(INTEGER004 + INTEGER003 - 1, INTEGER005, 1, 0)
- If (STRING001 == " ") Inc INTEGER006
- If (INTEGER006 == INTEGER001) Break
- EndWhile
- AnsiPos INTEGER004 + INTEGER003 - 1, INTEGER005
- STRING001 = Mid(STRING003, INTEGER003, 1)
- If (STRING001 <> " ") Then
- Print STRING001
- Else
- Print Chr(255)
- Endif
- Dec INTEGER002
- If (INTEGER002 == 0) Break
- PROC003()
- Delay 1
- PROC004()
- Color INTEGER007
- EndWhile
-
- EndProc
-
-
- ;------------------------------------------------------------------------------
- ;
- ; Usage report (before postprocessing)
- ;
- ; ■ Statements used :
- ;
- ; 1 End
- ; 1 Cls
- ; 2 Color
- ; 15 Goto
- ; 17 Let
- ; 8 Print
- ; 1 PrintLn
- ; 9 If
- ; 4 Delay
- ; 2 Inc
- ; 1 Dec
- ; 5 AnsiPos
- ; 3 Backup
- ; 4 EndProc
- ;
- ;
- ; ■ Functions used :
- ;
- ; 7 +
- ; 3 -
- ; 4 ==
- ; 1 <>
- ; 1 <
- ; 1 <=
- ; 1 >
- ; 2 >=
- ; 6 !
- ; 2 &&
- ; 1 ||
- ; 3 Len(
- ; 5 Mid()
- ; 1 Chr()
- ; 1 Random()
- ; 4 GetX()
- ; 4 GetY()
- ; 1 CurColor()
- ; 1 ScrText()
- ; 1 OutBytes()
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Analysis flags : No flag
- ;
- ;------------------------------------------------------------------------------
- ;
- ; Postprocessing report
- ;
- ; 1 For/Next
- ; 3 While/EndWhile
- ; 2 If/Then or If/Then/Else
- ; 0 Select Case
- ;
- ;------------------------------------------------------------------------------
- ; AEGiS Corp - Break the routines, code against the machines!
- ;------------------------------------------------------------------------------
-